home *** CD-ROM | disk | FTP | other *** search
- global gColorD, gTheta, gPhi, gR, gR2, gRep, gTempTheta, gTempPhi, gPlayedOnce, gNumOTimes, black
-
- on revertColor
- set the colorDepth to gColorD
- updateStage()
- end
-
- on startMovie
- if the machineType <> 256 then
- set gColorD to the colorDepth
- if the colorDepth <> 8 then
- set the colorDepth to 8
- end if
- end if
- set the randomSeed to the ticks
- set gPlayedOnce to 0
- set the floatPrecision to 7
- set gNumOTimes to 236
- set gRep to 0
- set gR to 200
- set gR2 to 200
- set gTempTheta to 0.001
- set gTempPhi to 0.25
- end
-
- on stopMovie
- if the machineType <> 256 then
- revertColor()
- end if
- end
-
- on spiralInit
- puppetSprite(24, 1)
- if gPlayedOnce = 1 then
- newValues()
- end if
- set gTheta to gTempTheta * (PI / 180)
- set gPhi to gTempPhi * (PI / 180)
- end
-
- on Lissajou2
- set gRep to gRep + 1
- if gRep > (gNumOTimes * PI) then
- go("HoldFrame")
- else
- set newH to (gR2 * sin(100 * gTheta * gRep) * cos(100 * gPhi * gRep)) + (gR * sin(gTheta * gRep) * cos(gPhi * gRep)) + 390
- set newV to (gR2 * sin(100 * gTheta * gRep) * sin(100 * gPhi * gRep)) + (gR * sin(gTheta * gRep) * sin(gPhi * gRep)) + 237
- set the loc of sprite 24 to point(newH, newV)
- updateStage()
- end if
- end
-
- on newValues
- set whichPattern to random(24)
- if (whichPattern > 4) and (whichPattern < 15) then
- set whichPattern to 5
- end if
- if whichPattern >= 15 then
- set whichPattern to 6
- end if
- set the castNum of sprite 24 to 129 + random(5)
- do("patternMaker" & whichPattern)
- end
-
- on patternMaker1
- set gNumOTimes to 600
- set gRep to 0
- set gR to 200
- set gR2 to 20
- set gTempTheta to 0.29999999999999999
- set gTempPhi to 0.5
- end
-
- on patternMaker2
- set gNumOTimes to 2300
- set gRep to 0
- set gR to 220
- set gR2 to 10
- set gTempTheta to 0.01
- set gTempPhi to 3
- end
-
- on patternMaker3
- set gNumOTimes to 572
- set gRep to 0
- set gR to 200
- set gR2 to 200
- set gTempTheta to 0.001
- set gTempPhi to 2
- end
-
- on patternMaker4
- set gNumOTimes to 2000
- set gRep to 0
- set gR to 200
- set gR2 to 50
- set gTempTheta to 0.01
- set gTempPhi to 1
- end
-
- on patternMaker5
- set gNumOTimes to 2000
- set gRep to 0
- set gR to 200
- set gR2 to random(30)
- set gTempTheta to log(random(100)) / 10
- set gTempPhi to log(random(100))
- end
-
- on patternMaker6
- set gNumOTimes to 2000
- set gRep to 0
- set gR to 200
- set gR2 to random(200)
- set gTempTheta to (log((random(270) / 100) + 1) / random(100)) + 0.001
- set gTempPhi to random(100) / 10
- end
-